home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997: The Complete Utilities Toolkit / macworld-complete-utilities-1997.iso / Programming / LogoMation 1.1.1 ƒ / Documentation ƒ / code tidbits / three rectangles, no funct copy / three rectangles, no funct copy
Encoding:
Text File  |  1994-01-08  |  349 b   |  27 lines  |  [UVtx/UVtl]

  1. // move a little with the pen up
  2. Up
  3. Forward 30
  4. Down
  5. // draw a 5 x 5 square
  6. Repeat 4
  7.     Forward 5
  8.     Right 90
  9.     
  10. // move a little with the pen up
  11. Up
  12. Forward 30
  13. Down
  14. // draw a 10 x 10 square
  15. Repeat 4
  16.     Forward 10
  17.     Right 90
  18.     
  19. // move a little with the pen up
  20. Up
  21. Forward 30
  22. Down
  23. // draw a 20 x 20 square
  24. Repeat 4
  25.     Forward 20
  26.     Right 90
  27.